home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / RCS / setregid.c,v < prev    next >
Text File  |  1988-11-17  |  2KB  |  105 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     88.11.17.13.30.50;  author ouster;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @@
  17.  
  18.  
  19.  
  20. 1.1
  21. log
  22. @Initial revision
  23. @
  24. text
  25. @/* 
  26.  * setregid.c --
  27.  *
  28.  *    Source code for the setregid library procedure.
  29.  *
  30.  * Copyright 1988 Regents of the University of California
  31.  * Permission to use, copy, modify, and distribute this
  32.  * software and its documentation for any purpose and without
  33.  * fee is hereby granted, provided that the above copyright
  34.  * notice appear in all copies.  The University of California
  35.  * makes no representations about the suitability of this
  36.  * software for any purpose.  It is provided "as is" without
  37.  * express or implied warranty.
  38.  */
  39.  
  40. #ifndef lint
  41. static char rcsid[] = "$Header: proto.c,v 1.2 88/03/11 08:39:08 ouster Exp $ SPRITE (Berkeley)";
  42. #endif not lint
  43.  
  44. #include <sprite.h>
  45. #include <proc.h>
  46. #include "compatInt.h"
  47.  
  48. /*
  49.  *----------------------------------------------------------------------
  50.  *
  51.  * setregid --
  52.  *
  53.  *    Procedure to map from Unix setregid system call to Sprite Proc_SetIDs.
  54.  *    Sprite doesn't have the notion of real and effective groud IDs;
  55.  *    instead, both gid arguments become the set of Sprite group IDs for
  56.  *    current process.
  57.  *
  58.  * Results:
  59.  *      UNIX_SUCCESS    - the call was successful.
  60.  *      UNIX_ERROR      - the call was not successful.
  61.  *                        The actual error code stored in errno.
  62.  *
  63.  * Side effects:
  64.  *    The previous group IDs are deleted.
  65.  *
  66.  *----------------------------------------------------------------------
  67.  */
  68.  
  69. int
  70. setregid(rgid, egid)
  71.     int    rgid, egid;
  72. {
  73.     ReturnStatus status = SUCCESS;
  74.     int array[2];
  75.     int num = 0;
  76.  
  77.     /*
  78.      * Make the rgid and egid the group IDs for the process. If a gid is
  79.      * -1, it is ignored.
  80.      */
  81.  
  82.     if (rgid != -1) {
  83.     array[0] = rgid;
  84.     num = 1;
  85.     if (egid != rgid && egid != -1) {
  86.         array[1] = egid;
  87.         num++;
  88.     }
  89.     } else if (egid != -1) {
  90.     array[0] = egid;
  91.     num++;
  92.     }
  93.     if (num > 0) {
  94.     status = Proc_SetGroupIDs(num, array);
  95.     }
  96.  
  97.     if (status != SUCCESS) {
  98.     errno = Compat_MapCode(status);
  99.     return(UNIX_ERROR);
  100.     } else {
  101.     return(UNIX_SUCCESS);
  102.     }
  103. }
  104. @
  105.